home *** CD-ROM | disk | FTP | other *** search
- gMaxStaticWidth = max(
- zstring_width(zstring: '$$$/Dialogs/ProPrintSet/Options/Frequency'),
- zstring_width(zstring: '$$$/Dialogs/ProPrintSet/Options/Angle'));
- dialog(name: '$$$/Dialogs/EditFreqAngle')
- {
- view(align_children: align_left)
- {
- view(align_children: align_row)
- {
- static_text(name: '$$$/Dialogs/PlateColor');
- static_text(item_id: 'plat', width: max_char_width() *12);
- }
- gap(width: max_char_width()*1);
- group()
- {
- view(align_children: align_row)
- {
- static_text(name: '$$$/Dialogs/ProPrintSet/Options/Frequency', width: gMaxStaticWidth, alignment: align_right);
- edit_text(item_id: 'freq', width: max_char_width() *6);
- }
- view(align_children: align_row)
- {
- static_text(name: '$$$/Dialogs/ProPrintSet/Options/Angle', width: gMaxStaticWidth, alignment: align_right);
- edit_text(item_id: 'angl', width: max_char_width() *6);
- }
- }
- ok_cancel();
- }
-
- }